This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
RE: How can i call Lotus Script/Java Agent from JavaScript ~Bill Fezkitherings 8.Jan.04 09:59 PM a Web browser Domino Designer 6.0.3Windows 2000
Have you tried setting the location.href such as in a script block:
location.href = "/db.nsf/AgentName?OpenAgent";
If you don't want to dump the agent contents over whatever document is open in the browser window you can just load the URL into a hidden iFrame on MSIE or a layer on NS/Moz ala:
document.frames("iframeName").location.href = ...
(I don't have a layer reference handy but I'm sure you can find the DOM specifics on the web).